Problem Note 38449: Read Access Violation error in PROC BOXPLOT or PROC SHEWHART
When the HAXIS= or VAXIS= option is used on the PLOT statement in PROC BOXPLOT to assign an axis definition and the corresponding AXIS statement contains a text description suboption after quoted text instead of before it, then PROC BOXPLOT might abend with the following error:
ERROR: Read Access Violation In Task [ BOXPLOT )
The same problem occurs with any of the chart statements in PROC SHEWHART when a similar AXIS statement is specified. Then the procedure might abend with:
ERROR: Read Access Violation In Task [ SHEWHART )
To circumvent the problem, place the text description suboption before the text string it modifies.
For example, the following is incorrect:
axis1 label=('Group' justify=left);
proc boxplot;
plot measure*group / haxis=axis1;
run;
Here is the correct code:
axis1 label=(justify=left 'Group');
proc boxplot;
plot measure*group / haxis=axis1;
run;
Operating System and Release Information
SAS System | SAS/STAT | z/OS | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft® Windows® for 64-Bit Itanium-based Systems | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows Server 2003 Datacenter 64-bit Edition | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows Server 2003 Enterprise 64-bit Edition | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows 2000 Advanced Server | 9.1 TS1M0 | |
Microsoft Windows 2000 Datacenter Server | 9.1 TS1M0 | |
Microsoft Windows 2000 Server | 9.1 TS1M0 | |
Microsoft Windows 2000 Professional | 9.1 TS1M0 | |
Microsoft Windows NT Workstation | 9.1 TS1M0 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows Server 2003 Enterprise Edition | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows Server 2003 Standard Edition | 9.1 TS1M0 | 9.2 TS2M2 |
Microsoft Windows XP Professional | 9.1 TS1M0 | 9.2 TS2M2 |
64-bit Enabled AIX | 9.1 TS1M0 | 9.2 TS2M2 |
64-bit Enabled HP-UX | 9.1 TS1M0 | 9.2 TS2M2 |
64-bit Enabled Solaris | 9.1 TS1M0 | 9.2 TS2M2 |
HP-UX IPF | 9.1 TS1M0 | 9.2 TS2M2 |
Linux | 9.1 TS1M0 | 9.2 TS2M2 |
OpenVMS Alpha | 9.1 TS1M0 | 9.2 TS2M2 |
Tru64 UNIX | 9.1 TS1M0 | 9.2 TS2M2 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | medium |
Topic: | Analytics ==> Exploratory Data Analysis Analytics ==> Distribution Analysis Analytics ==> Descriptive Statistics SAS Reference ==> Procedures ==> BOXPLOT SAS Reference ==> Procedures ==> SHEWHART Third Party Analytics ==> Statistical Process Control
|
Date Modified: | 2012-10-25 12:16:15 |
Date Created: | 2010-01-20 16:03:47 |